home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / System / StyleWriter Page Monitor GX / Source / Jump Table.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-08  |  336 b   |  18 lines  |  [TEXT/MMCC]

  1. /***
  2.  * Jump Table
  3.  *
  4.  *  This contains the code that should be put at the very start of the code resource.  It
  5.  *  tells gx where to find the routines later in the resource that will do the real work.
  6.  *
  7.  ***/
  8. #include "Headers.h"
  9. #include "PageMon.h"
  10.  
  11. void asm main ()
  12. {
  13.     dc.l        0;
  14.  
  15.     jmp            PageMonImageJob;
  16.     jmp            PageMonImagePage;    
  17. }
  18.